home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / hack / 2_3 / gold.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-20  |  311 b   |  14 lines

  1. /*    SCCS Id: @(#)gold.h    1.4    87/08/08
  2. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  3. /* gold.h - version 1.0.2 */
  4.  
  5. struct gold {
  6.     struct gold *ngold;
  7.     xchar gx,gy;
  8.     long amount;
  9. };
  10.  
  11. extern struct gold *fgold;
  12. struct gold *g_at();
  13. #define newgold()    (struct gold *) alloc(sizeof(struct gold))
  14.